a {
    text-decoration: none;
    color: #ff5454;
}

body {
    background-color: rgb(11, 11, 37);
}

.container {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;

    display: grid;
    grid-gap: 8px 10px;
    grid-template-columns: 1fr 5fr;
    grid-template-rows: 80px 6fr 100px;
    grid-template-areas: 
        "h m"
        "l m"
        "f f";
}

.header {
    background: #ff5454;
    grid-area: h;
}

.main-content {
    background: rgb(34, 34, 66);
    grid-area: m;
}

.footer {
    background: rgb(34, 34, 66);
    grid-area: f;
    align-content: center;
    text-align: center;
}

.zine-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px, 1fr));
    gap: 10px;
}

.menu {
    line-height: 1.8;
}

h2 {
    color: aliceblue;
}

p{
    color: rgb(243, 174, 243);
}

p:hover {
    color: rgb(201, 121, 201);
}

img.bannerpicture {
    max-width: 200px;
    height: auto;
}

img.zine {
    max-width: 189px; 
    height: auto;
    transition: transform .3s;
    border-radius: 10px;
    border: 2px dotted blueviolet;
}

img.zine:hover {
    transform:scale(1.15);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgb(29, 156, 82) rgb(0, 2, 128);
}

img.zine-page {
    width: 100%;
    height: auto;
}